Jump to content

steve498

Members
  • Posts

    178
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by steve498

  1. He can't and is in a belief that Mirror mode is the best thing ever and is not as detectable as injection. However, he has no knowledge of how Mod Weath identifies and bans bots. Also he doesn't have VIP so has not even used Mirror mode.
  2. I was only arguing the point that it does not lower ban rates. I do completely agree that if OSBot was detected mirror client would safe you as you are not vulnerable to it being detected. Also I was not aware that Jagex viewed clients as unrecognised so always learning new things every day
  3. steve498

    Vip/Mirror

    Depends whether the proxy is public or private. Private proxies are pretty cheap these days
  4. steve498

    Vip/Mirror

    Yes you can play on other accounts whilst using mirror mode but you will be using the same IP address so you should look into proxies as otherwise your other legit account could be flagged. You do not have any greater or less chances of being banned whilst using mirror mode. There has been no evidence to support this just personal experiences from the many users on this website. VIP+ Scripts are just scripts that are exclusive to VIP users (I believe.)
  5. Okay well that's your opinion but there is no hard evidence that mirror client decreases your ban chances. Why else would you need VIP for it? Oh maybe because it's titled as "Mirror Client VIP+ Beta Testing". You're BETA testing it. OSBot probably do not want thousands of people using it as it would result in a large amount of reports and would be hard to keep up with but keeping it to a small majority helps keep the flow of reports at a stable level. Also I'm not being stubborn I'm just putting out the facts and yes I can afford VIP but I do not need it as I'm using injection perfectly fine.
  6. Ok Jagex do not see Osbuddy.jar and Osbot.jar otherwise they could easily identify who is using botting clients and who isn't. I'm also sure there is a law against Jagex viewing processes on your personal computer system as it is technically spying. If this was possible then other game companies would of done the same to combat bots. Unless you can source your claim that Jagex can see the name of the client you're using I disagree with you. I've used Injection for over half a year and haven't received a single ban across all my accounts. I haven't touched mirror once.
  7. "Injection they can see you are using a 3rd Party Client, that will get your account flagged" Ok so you're telling me that using a 3rd party client will get your account flagged? In that case I would assume that all OSBuddy users are all flagged. That's a lot of players that Jagex think are cheating.
  8. That's a smart way of doing it. I just couldn't be bothered with the whole training them up to start chins process but glad it's going well for you
  9. Chins are heavily monitored. I saw Mod Weath respond to a tweet once about a lot of hunting bots and he swooped around the area and cleared them out. That's why I avoided botting hunter
  10. "The first strategy is done by detecting whether the RS client that runs is modified or not." I understand that but there is no specific statement saying OSBot's injection client is more detectable than mirror mode. If it was then I'm pretty sure Jagex would be banning users within minutes of botting with the client. All I'm saying is I believe both are as safe as each other. However, I could be completely wrong because I am in no way affiliated with Jagex and have no idea about all of their detection methods.
  11. Well I personally disagree. Injection works perfectly well and OSBot would not allow it to be used if it was unsafe. It may make you feel safer but I do not believe there has been any proof of it being safer. If there has been though please link me
  12. Source of it being a lot safer? I've used injection from day one and I'm still not banned. I'm pretty high in the leaderboards too for my skills botted.
  13. Still getting this fishing guild error with sharks
  14. Hopefully this works but completely untested. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.util.Random; import org.osbot.rs07.api.Skills; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.api.NPCS; import java.awt.*; @ScriptManifest(author = "You", info = "My first script", name = "MegaWGuild", version = 0, logo = "") public class main extends Script { int randomHealth = random(30, 40); public static int foodId = 385; public static int helmId = 1159; public static int bodyId = 1121; public static int legsId = 1071; public static int tokenId = 8851; public static String goatName = "Animated Mithril Armour"; @Override public void onStart() { log("Let's get started!"); } @Override public int onLoop() throws InterruptedException { if ((this.inventory.contains(new int[] { foodId })) && (!myPlayer().isMoving())) { if (!myPlayer().isMoving()) { NPC goat = (NPC)this.npcs.closest(new String[] {goatName}); GroundItem helm = (GroundItem)this.groundItems.closest(new int[] {helmId }); GroundItem body = (GroundItem)this.groundItems.closest(new int[] {bodyId }); GroundItem legs = (GroundItem)this.groundItems.closest(new int[] {legsId }); GroundItem token = (GroundItem)this.groundItems.closest(new int[] {tokenId }); if (currentHealth() < randomHealth) { eat(); sleep(random(300, 500)); } else if ((goat != null) && (!goat.isUnderAttack())) { goat.interact(new String[] { "Attack" }); sleep(random(1000, 1500)); } else if (body != null){ takeGroundItem(bodyId); } else if (helm != null){ takeGroundItem(helmId); } else if (legs != null){ takeGroundItem(legsId); } else if (token != null){ takeGroundItem(tokenId); sleep(random(100, 400)); } else if ((helm == null) && (legs == null) && (body == null) && (token == null)) { Item use = this.inventory.getItem(new int[] {bodyId }); use.interact(new String[] { "Use"}); sleep(random(100, 500)); RS2Object tile = this.objects.closest(new String[] { "Magical Animator" }); tile.interact(new String[] { "Use"}); sleep(random(2000, 3000)); } } } return random(200, 300); } private void eat() { Item food = this.inventory.getItem(new int[] {foodId }); food.interact(new String[] { "Eat" }); } int currentHealth() { int percperone = 100 / this.skills.getStatic(Skill.HITPOINTS); return percperone * this.skills.getDynamic(Skill.HITPOINTS); } private void takeGroundItem(int id) { try { GroundItem horn = (GroundItem)this.groundItems.closest(new int[] { id }); horn.interact(new String[] { "Take" }); sleep(random(1200, 1500)); } catch (Exception localException) {} } @Override public void onExit() { log("Thanks for running my Warrior Guild script!"); } @Override public void onPaint(Graphics2D g) { } } Download: http://uppit.com/jrz67pk733ba/OSBOT_Script.jar I've compiled it for you. It looks kinda outdated through so I'd recommend you re-write it or something.
  15. I assumed I would have to go down this route. That's fine, thanks for your help (:
  16. I'm not sure if this is the right section but I was wondering if there is a way to let people test your script without releasing the .jar and more importantly the source code. I can't test it all by myself as I'm pretty busy all the time but I've re-written an old project over a few days. Thanks
  17. How much are you paying? I have an account with 99 fishing and decent stats. Currently at 14.5Mil fishing XP no bans and 30Mil cash in bank.
  18. Still getting that problem where the bot sits on the second pier in the fishing guild with a full inv. Reported it a while ago but just got it again recently. It's pretty rare to get through.
  19. This is probably the afk mode feature and the game is then logging you out. You aren't being logged back in because you haven't added your account username and password to the OSBOT client. Add them and then you'll get logged back in.
  20. I just experienced the 3rd point and stopped the script until it's fixed. I'm glad you mentioned it or otherwise I wouldn't of babysat it and probably would of end up banned
  21. Thanks for 99 fishing czar too
  22. Awesome thanks. I am currently powerfishing so would love to test the new dropping system
  23. This is a feature within the anti-ban to simulate you mis-clicking on a spot. It's not an error I've queried it before.
  24. I just ran a twelve hour at the fishing guild doing sharks with no problems so are you sure you was on the latest version and tried re-downloading the osbot client? @3hituboned
×
×
  • Create New...