Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/05/18 in Posts

  1. @meganide97 what's this? @Muffins @Chris @Night @Mio
    7 points
  2. I have been inactive lately due to moving houses, working 60+ hours a week at my job in real life, and i finally got internet back and a week off work. I still can't access ACP or do script change requests due to no access until Maxi/Zach give me the access. So just wanted to stay hi to all my noobs.
    4 points
  3. Can't be banned using private script - no variables are shared with any other script. This means your script and profile is unique. My private script has secret interaction method and sleep pattern. Cannot be detected. Human mouse movement and ABC Level 4302. Want to bank swordfish? How about we check your stats. Want to harpoon a fishing spot? Maybe now is a good time to hop worlds.
    3 points
  4. This was back in 'nam days, like 2003-2004. One day I was scammed, someone sold me a member's account for like 3K gp - which was my entire back and a TON of money. But it seemed like a great investment. TLDR, password he gave me was too long and didnt even fit the damn login screen. After I sent a complaint for my items back and the user to be banned, and alas inaction - I decided to scam myself. What I would do is carry around a lot of juicy loot, I'm talking big bucks like adamant scimitars and rune daggers. I'd bring people to Falador in that little village thing, to an upstairs apartment. There would be a dresser that you can open, like a drawer would pop out. I'd tell them that I found a glitch. You would open the drawer, blow a kiss (emote), type your password, then search the drawers. I'd act amazed and spam chat, then show them my rune dagger. They would also freak out, because mind you this is early 2000s - rune items were top tier. They would do it and say it didn't work. I'd say try logging out and then back in - badda bing badda boom. Just like that I would clear their mithril armor and flip it in an underground market of fences and thieves. Eventually I would be banned with a full set of Rune armor, which completely destroyed me as a human being for a few months.
    3 points
  5. don't mind me C=
    2 points
  6. Bans in a nutshell: Write a private script and only use it for yourself, write in all the antiban and bullshit you can dream of. Bot until you get banned. Come on the forums and tell other people that your antiban method worked .
    2 points
  7. 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
    1 point
  8. ────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - £3,99 | Chest Thiever - £2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌡ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌡ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.
    1 point
  9. Results Instructions There are no instructions. We do the all the work for you. CzarScripting™ Tips Make sure to set food in your setup window! Don't bot more than 12 hours a day! It's not humanlike! Features - All locations supported, including Crab Claw Isle - Banking support - All combat types supported (ranged, all ammo + ranging types, including looting) - Activity Slider -- choose 4 different activity settings from: (Afk my position, Afk any generated position, Attack visible/active crabs only, Full activity/attack all) - Aggression Slider -- choose from 4 different aggression settings: (Only retaliate to crabs, Attack people's crabs when none are found, Attack all crabs, ONLY attack other people's crabs) - Tasked levelling - allows you to set level goals and switch attack styles to raise different skills, e.g. set goals to 50 70 70, from current stats 44 51 55, it will reach the goal stats. - Skill Priority: you can choose in which order to raise the stats, e.g. lowest first, nearest to goal first, top->bottom, bottom->top, level-up evenly, etc. - Customized Stop Conditions: stop script when a certain condition is met, e.g. reached goal stats, killed X crabs, time passed, ran out of equipment, items, etc. - Simple (on user's side) inventory layout chooser consistent with all my scripts -> 1 button copies inventory layout and saves it - World hop support, with player count chooser -- World hop customization: allows you to choose which tile to hop worlds from -- Break tile chooser: allows you to choose which tile to break on, ~3 minutes before breaks trigger - 'Non-botting' mode (very popular): allows you to afk the script and technically not bot at all: the script will display jframe popups (and beep) when crabs are no longer aggressive which will prompt the user to manually refresh the crabs by walking up - Item looting, including rare drop table option - Potion support (all potion types) - Crab refreshing by walking out of the region Gallery
    1 point
  10. 'the intelligent choice' by Czar Want to buy the bot, but only have rs gp? Buy an OSBot voucher here
    1 point
  11. import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.api.ui.Tab; import org.osbot.rs07.event.Event; public final class ToggleShiftDropEvent extends Event { @Override public final int execute() throws InterruptedException { if (Tab.SETTINGS.isDisabled(getBot())) { setFailed(); } else if (getTabs().getOpen() != Tab.SETTINGS) { getTabs().open(Tab.SETTINGS); } else if(getShiftDropWidget() == null || !getShiftDropWidget().isVisible()) { getGameSettingsWidget().interact(); } else { boolean enabled = getSettings().isShiftDropActive(); if (getShiftDropWidget().interact()) { Sleep.sleepUntil(() -> getSettings().isShiftDropActive() != enabled, 3000); setFinished(); } } return random(100, 200); } private RS2Widget getShiftDropWidget() { return getWidgets().singleFilter(getWidgets().getAll(), new WidgetActionFilter("Toggle shift click to drop")); } private RS2Widget getGameSettingsWidget() { return getWidgets().singleFilter(getWidgets().getAll(), new WidgetActionFilter("Controls")); } } class WidgetActionFilter implements Filter<RS2Widget> { private final String action; WidgetActionFilter(final String action) { this.action = action; } @Override public boolean match(RS2Widget rs2Widget) { if (rs2Widget == null) { return false; } if (rs2Widget.getInteractActions() == null) { return false; } for (String action : rs2Widget.getInteractActions()) { if (this.action.equals(action)) { return true; } } return false; } }
    1 point
  12. Hey just wrote my first ever OSbot script after having studied Java for 2 days with no prior experience whatsoever, just wanted to ask for some feedback. It's a very basic mining script that mines Copper ore and then banks, so far it seems to work. What I want to add next is a GUI that lets the user input what kind of ore & location they want to mine in and bank, and also add paint. However I have no idea whatsoever how to this so I will have to study more before doing this. I also read about dividing the script in multiple classes and using the switch command to make it look cleaner so that I wouldn't have to use so many if statements. Will update you guys on the script as I add new stuff. Edit 1: - Cleaned up the code a little bit after reading the feedback. - Added paint (Total runtime, xp gained, lvls gained, total gp made, gp/hour, ore mined, xp/hr. - Added some antiban (it now randomly hovers the mining skillicon). - Changed it to mine iron ore instead. Picture of the bot running: https://i.gyazo.com/87b8d4cf40e87cb4f054b9825d4eae38.png Updated code: Future updates: - Will add a GUI that will let you choose whether you want to powermine or bank, and also lets you choose which ore to mine that supports more locations and not just the Al-Kharid mine. - Will have to implement some kind of method that gets the GE prices for different ores to calculate the gp/hour. - For the powermining part, I want it to use shift-click to drop if possible. Appreciate further feedback, thanks! Edit 2: - Script now remembers starting position so you can start it from any mine and it will automatically walk to the closest bank. - Filtered deposit item to bank everything that ends with ore so skillers can have pickaxe in inventory. Edit 3: - Added a GUI that lets you choose which ores you want to mine (based on color). - Cleaned up the code a little bit. Thanks @Vilius for the help! Edit 4: - Added a powermining checkbox in GUI that supports shift dropping. - Script is now finished!!! :-) Code:
    1 point
  13. I told you to contact me through Skype or Discord, because if I reply, it would be considered as spamming, and bypassing bump timer.
    1 point
  14. 99 Cooking fastest 99 i got, now im thinking to go for 99 mage found sick way of getting 500k cash per hour and 100k exp, or i contniue with cooking..will see.. http://prntscr.com/k30piu
    1 point
  15. @Night He ordered while the live chat was offline. Not sure why he made a scam report, the site clearly says delivery can take up to 24 hours once u complete an order and he could have found his answer on the FAQ. https://www.rsgoldmine.com/faq I have bought Runescape Gold but have not been contacted yet? That means that we are currently offline. Most orders are delivered within minutes but keep in mind that deliveries can take up to 24 hours. We understand that it can be frustrating to wait on your Runescape gold so to compensate the waiting you will receive bonus gold! Anyways this order has been delivered now. http://prntscr.com/k30o24 Kind regards, Ruben
    1 point
  16. http://lmgtfy.com/?q=runescape+bot+mouse+detection http://lmgtfy.com/?q=runescape+bot+human+mouse+movement
    1 point
  17. Maybe they are urgent, only reason since GP prices aren't going up.
    1 point
  18. This is correct
    1 point
  19. "It is not allowed to post any URL to another community, commercial website, or bot. Doing so will result in a warning. Excessively spamming of an URL will result in an immediate suspension of your account." " No external links to other websites providing vouches or services are allowed, everything must be from within the OSBot community" Just check the rules of the forums and the marketplace.
    1 point
  20. Poor guy, he gets excited about his first script and you get to airing him out lol.
    1 point
  21. I can in about 2 weeks, when I'm making more accounts my dude. I already let the bot do it's 1by1 clicking bullshit and risked the ban. It happened on 1 client, well the other one on the same machine was going fine(I need to keep them minimized to keep them at about 30-40% cpu the same, like I said if they're both open the one open and prioritized will have 40% cpu (the one that works fine) and the other one will be 10-40% spiking (and 1by 1 clicking). Like I said it's something todo with the client and toaster machines. I've had multiple conversations with @Apaec with his script not working when it runs out of arrows; claims it works 100% for him. (Not the case for me, works 0% of the time). I've had multiple conversations with @Fruity where his script will also fail to realize when out of arrows / scales. Now some times these scripts will pick up and realize, but most of the time they don't. The scripts have the checks, and work for other people so I don't blame the script authors. OSBot is buggy / some issue is happening where some scripts aren't working as they should
    1 point
  22. i remember mining pure ess all weekend to afford a full black mystic set which was like 650k. I had the set for about 15 minutes before someone told me he would buy it for 1m, I then proceed to trade him my mystic set for 10004 coins. Devastated.
    1 point
  23. 1 point
  24. Thanks man! I watched some youtube videos and read tutorials here on the forums as well as read snippets of scripts to get an idea how to type the code. Chris has a discord as well where he teaches you the basics of coding. Here are some links that were very helpful to me: there is a link to the discord ^ up there. Also I've just started watching these youtube guides which are very helpful: Gl man
    1 point
  25. Loving the work you done on this script since the start man! Keep up the good work!
    1 point
  26. This script is completely broken.. you start it with cash in the invent then it banks it and then tries to buy items without cash and just sits there and doesnt withdraw cash from bank. Also the new gear section is useless as the search item option doesn't even work.. the old version worked 100% it was so much simpler
    1 point
  27. I personally use injection (which is what I assume you meant)
    1 point
  28. Hi, Since you're a VIP user, there is no account limit.
    1 point
  29. You been inactive? ?
    1 point
  30. free advertising for me and the DBuffed
    1 point
  31. Amazon gift code are 80% max of cash value, so its more like .6 rate :s
    1 point
  32. Completed 3x 60 prayer & imbued mage cape & horror from deep package, very fast and reliable, thanks!
    1 point
  33. So glad you got it back, I've been following for a while and look forward to your updates.
    1 point
  34. Where does your hate from 'Antiban' stem from when it's fairly common knowledge that bans are a result of the data analysts Jagex has employed? I can appreciate that 99% of 'Antiban' that scripters implement is worthless.. i.e. Computer-generated random ints, but still.. stating every suggestion is pointless seems a bit backwards to me.
    1 point
  35. I'm for "anti-ban" and all but this is pretty funny 10/10
    1 point
  36. Randomization nand anti ban doesn't work if everyone uses it. It's not random if 1,000 bots are doing the "random" movements. It creates a pattern then
    1 point
  37. 25k zulrah kills across 4 accounts with zero bans as a test my 2cents -, "anti ban" is just randomization. When more people use the same script ban rate goes up, this is why private scripts are so popular and why abc200L works
    1 point
  38. 1 point
  39. did 60 prayer for me on two accounts, appreciate it
    1 point
  40. UPDATE- Sick proggy going crazy with cooking http://prntscr.com/k24z0q
    1 point
  41. I see trust as how much I know a person. Feedback, though a decent indicator of how many trades a person has roughly done, can't define 'true' trust. A lot of people farm feedback and do a bunch of small trades. They get 50-100 feedback and people just the number and think that it's a high number so the person is trusted. On the other hand, another guy can have 25 feedback but all with 100m+ trades and people would rather go with the first guy just because he has more feedback. But I stopped trusting people just based on the number of feedback they have. I've seen plenty of people scam with high feedback. Staff members are not except from this, be it a moderator or admin. People scam because they're people and having a certain rank doesn't bar someone from doing something. I trust people based on how well and how long I've known them, though just because I've known someone for a while doesn't mean that I'll go lend them 100m. It's hard to tell if you can trust a person just based on an initial meeting. You have to develop a relationship with them and get to know them, much like in the real world. Just remember that this is online and people do a lot of stuff they'd never do in person just because they can hide behind a monitor and feel good all to them self.
    1 point
  42. I had probably just bought 2M at like 1.5$/m, just learned about botting. Bought some gear had maybe 800k, decided to bot with my 800K on me, watched the bot drop my monies. I stopped the bot and back in the day when you stopped the script it logged worlds. Moral of the story; I didn't know how to realize what world I was in, I lost 800K. Some F2P was happy.
    1 point
  43. Interesting, you joined Monday. Care to explain why you have a 2nd account @creamfever
    1 point
  44. Transacting exclusively through Amazon gift. I will gift you the balance directly. I will go first if you are a trusted / big VIP donor on the site. Discord: Qtsbuckteeth#6673 UPDATE: done buying, thanks a lot guys!
    0 points
  45. OSBOTABCL10 Chris Compliance Methods are going great
    0 points
×
×
  • Create New...