Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/31/16 in Posts

  1. back at it again with the out-of-date cient
    13 points
  2. CzarScripts #1 Bots LATEST BOTS If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    5 points
  3. Only "autisim" @Pain
    3 points
  4. 3 points
  5. Finally made it back, hopefully you will see more updates from my end. My current setup (potato camera) because I couldn't fit my case in luggage:
    3 points
  6. NEW: Released Chop & Firemake plugin Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!
    2 points
  7. UPDATE: We had to cancel today due to severe delays in updating OSBot. We were unable to do the school because OSBot was not working! Scripter school will be at 3-4pm on Friday 1st April now! There will be a live stream today between 3pm and 6pm UK time. (GMT) Myself and Vilius (http://osbot.org/forum/user/161782-vilius/) will be doing a live stream, probably on twitch to teach new people how to make their own scripts. How cool is that. If you can already script we will do some more advanced stuff too. Keep this thead bookmarked, and also come on the chatbox between 3pm-6pm UK time (GMT) I will post the live stream link here and in the chat room of OSBot. Ask us anything on the stream. Finally be able to make scripts.
    2 points
  8. 2 points
  9. lol xbox sucks lol xbox sucks
    2 points
  10. Yeah, game sucks. Xbox One - Black Ops 3. End.
    2 points
  11. http://osbot.org/forum/topic/64221-rules/ The staff does not and will not assist with any disputes regarding private script transactions. You made me read 25 minutes worth of information, yet you decided to leave out that you got banned with over 500M on one account, and you made over 1B from the script. Nothing will be done. Feel free to contact scripters and have them try to deob the jar and fix it for you.
    2 points
  12. If you're having a problem with object interaction on mirror, it may be that you're hooking at the wrong time. Make sure you hook the mirror client BEFORE you log in. Otherwise it bugs out. @Khaleesi Thanks for keeping my work alive
    2 points
  13. I have my Lawyers ready
    2 points
  14. Well finally after reaching 40m thieving xp and being ranked #3 my account was finally banned! Script is amazing czar and I really do recommend it to anyone that wants to start swapping over gold!
    2 points
  15. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
    1 point
  16. Wanted to thieve the chest so i made this. Its not very efficient, it runs 12-16 seconds for a thieve from chest and you can min-max clicking at 8 seconds. All the scripts on the sdn dont support this chest so i threw this together real fast. import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; import java.util.concurrent.TimeUnit; @ScriptManifest(name = "Ardougne Nature Chest", author = "Patrickold", version = 0.1, info = "Simple script to open the Nature Rune chest", logo = "") public class ArdyChest extends Script { private int natureRunes = 0; private int coins = 0; private long timeBegan; private long timeRan; private int beginningXP; private int currentXp; private int xpGained; private int currentLevel; private int beginningLevel; private int levelsGained; @Override public void onStart() { log("Script Starting."); natureRunes = (int) this.inventory.getAmount(561); coins = (int) this.inventory.getAmount(995); timeBegan = System.currentTimeMillis(); beginningXP = skills.getExperience(Skill.THIEVING); beginningLevel = skills.getStatic(Skill.THIEVING); lastChest = System.currentTimeMillis() - 5000; } @Override public void onExit() { log("Script Exited."); } private long lastChest = 0; @Override public int onLoop() throws InterruptedException { Entity chest = getObjects().closest("Chest"); sleep(random(100,200)); getCamera().moveYaw(random(10,150)); sleep(random(100,200)); if(chest.getId() == 11736 && chest.getX() == 2671 && chest.getY() == 3301 && lastChest <= System.currentTimeMillis() - 3000) { chest.interact("Search for traps"); getCamera().movePitch(random(100,200)); getCamera().moveYaw(random(10,150)); lastChest = System.currentTimeMillis(); } sleep(random(100,200)); getCamera().movePitch(random(100,200)); return(random(100,150)); } private String ft(long duration) { String res = ""; long days = TimeUnit.MILLISECONDS.toDays(duration); long hours = TimeUnit.MILLISECONDS.toHours(duration) - TimeUnit.DAYS.toHours(TimeUnit.MILLISECONDS.toDays(duration)); long minutes = TimeUnit.MILLISECONDS.toMinutes(duration) - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS .toHours(duration)); long seconds = TimeUnit.MILLISECONDS.toSeconds(duration) - TimeUnit.MINUTES.toSeconds(TimeUnit.MILLISECONDS .toMinutes(duration)); if (days == 0) { res = (hours + ":" + minutes + ":" + seconds); } else { res = (days + ":" + hours + ":" + minutes + ":" + seconds); } return res; } @Override public void onPaint(Graphics2D g) { timeRan = System.currentTimeMillis() - this.timeBegan; currentXp = skills.getExperience(Skill.THIEVING); xpGained = currentXp - beginningXP; currentLevel = skills.getStatic(Skill.THIEVING); levelsGained = currentLevel - beginningLevel; super.onPaint(g); g.setColor(Color.GREEN); g.drawString("Ardougne Nature Chest :3", 5, 290); g.drawString("Time Ran: "+ft(timeRan), 5, 302); g.drawString("Nature Runes: "+(this.inventory.getAmount(561) - natureRunes), 5, 314); g.drawString("Coins: "+(this.inventory.getAmount(995) - coins), 5, 326); g.drawString("Xp Gained: " + xpGained, 5, 338); g.drawString("Thieving LVL: "+currentLevel+(levelsGained > 0 ? " (+"+levelsGained+")" : ""), 5, 350); } } Second time running it, first time was for about a hour then i had to leave. I have only tested it on the Mirror client, so. No idea how the regular client will function.
    1 point
  17. We've tinkered around with the idea before but today we actually went ahead and implemented an actual system for it. VIP and Sponsor members will have access to a special category of free VIP+ scripts. Simply visit the Scripts page, find a VIP+ script (the price will be "Base: VIP+") and click "Add" as you would for a regular free script. If you are not a member, then you will have an option to "Buy VIP" instead. We appreciate the contributions made by our members to keep this project alive and thriving. Respectfully, -The OSBot Staff
    1 point
  18. Someone sent me 37.5 BTC and said pay me later More trusted than BOGLA
    1 point
  19. can you make my parents love me
    1 point
  20. Hey! I just came home from Washington and my trial looks like disappeared? I wanted to just let you know that when i requested it for 72 hours I didn't know what day I would becoming home and it looks like it disappeared also rs updated so osbot is down, so when it comes back up may I have that trial again? I am very excited to start buying your scripts Also can you buy scripts with osrs gp?? I wanted to test out the Khal Agility bot Request Template: - Script name Khal Agility - Trial length: 24hr - Reason for trial: To see if there is a great agility bot without it failing all the time and there was a lot of recommendations for your bot so I wanted to test it out! - Are you ging to give feedback on the script? Definitely! already have! Great person and Awesome scriptor!!
    1 point
  21. Thanks, I went ahead and banned him.
    1 point
  22. hi guys can someone tell me why osbot is down i was trying to watch a really really good gay porno but then my bot stopped working?? Cheerio, Mr. Rental
    1 point
  23. Moved to acc>requests
    1 point
  24. On Topic: Nissan 370z Nismo (Fully Modded) OR Maserati Granturismo
    1 point
  25. https://gyazo.com/bc9b5a0844f631e03edb2f3e6e74cc23 not so long ago i guess? https://gyazo.com/21b6d797d427979daea121f8cb9ba96b yes i remember veddy good :kappa:
    1 point
  26. Ran this for 3 weeks suicide botting and no ban yet.. What gives?
    1 point
  27. when the bot was offline......
    1 point
  28. Request Template: - Script name Khal RuneCrafter - Trial length: 24hr - Reason for trial: want to see if its for me, if it fulfills my needs i will purchase - Are you ging to give feedback on the script? Yes
    1 point
  29. Hey Khaleesi, can i have a trial before i buy it please? Edit: Nevermind, just bought it :P
    1 point
  30. Hey, I dunno but the script isn't working with ranged... I'm at monitors. it : ---------- ready ---------- initials: perfectstronghold Chosen ammo [iron arrow]x[0] then gets stuck. the safe spotting that breaks it
    1 point
  31. Done good luck on trial ;D As for bans, you gotta pay attention to your bots man, of course you will get banned if you don't bot correctly, here are a few tips, mostly used by the users who achieved 50+ hours in 1 go (without bans) using this bot: - delete jagexcache if you get banned - logout during livestreams - don't bot immediately after an RS update - reply to in-game chat - use reasonable breaks, (4:1 ratio is fine) - don't have bot gear, have some personalized items like gold cape or something - bot during UK non-work hours to stay under the radar <<< important! For avoiding bans, the bot does as much as possible - aside from that, the rest is on you; if you fail to bot carefully, you will get banned no matter which bot. If you pay attention to botting and bot smart, you will never get banned
    1 point
×
×
  • Create New...