Jump to content

Kramnik

Members
  • Posts

    1547
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Kramnik

  1. I use custom domain since I own e-shop so it is very convenient since you can make lots of accounts easy etc. Now regarding your @v.v I think there is no chance you will be able to create an email with that ending
  2. Probably not, if you are making them by hand
  3. Don't think there is much market for hand made accounts unless you are selling cheap. As previously mentioned 100-300k ea, otherwise people just stick to botted ones since it doesn't matter to much if they made and rested properly
  4. Around 1M, + I guess you can add the logs so 1.2M
  5. Kramnik

    howdy

    Hi and welcome, I think you don't need anything in order to buy accounts, only need 100 post count if you want to try to sell one
  6. Yes
  7. Thank you, sir!
  8. 1. I listen to pretty much everything, but currently top one is techno 2. Rikhter - Phiom Enhah, Bee Gees - Stayin' Alive, Jeff Mills - The Bells 3. Dax J, Under Black Helmet, Metallica, Vivaldi, Zed's dead 4. Guitar and DDJ-1000 if you can call it an instrument
  9. And no fishy activities done on the account?
  10. Usually when someone cracks these accounts and then use them for botting since no one would ever buy a cracked account without any details since it can be recovered by og owner. So since someone pretty sure botted your account at some point it is banned again most likely
  11. I don't think you should be using runelite with OsBot in the first place
  12. This screenshot is made by Jagex themself
  13. Hello, The guy who provided me with accounts which already past tutorial island and rested is away atm so looking to buy them somewhere else Needs to be rested a week or so and made on US ip.
  14. My tip would be write as many log(); events as you can, testing scripts will be much smoother as you quickly can see where the script starts act funny
  15. Kramnik

    Stealth Quester

    No, injection
  16. Nice release mate
  17. Kramnik

    Stealth Quester

    Hi, it seems Rune mysteries in P2P is not working efficiently Having Necklace of passage incorporate would be neat, but in general just saw it walk from Varrock to Wizard's Tower through lumbridge even thought it had lumbridge teletab in inventory. Also didn't use stamina potions EDIT: Also increases item price for some more rare items to conservatively. Was doing RFD and needed greensman ale which is usually 280ea but ended up buying after like 7-8 tries for 1k
  18. Nice tool, thanks for input
  19. Maybe they are killing chickens now, but 2-3 months later they will be on forums as maxed staker
  20. Howdy, would like to give this a test
  21. Bump
  22. You can try, but don't get your hopes to much. RWT ban are hard to quash since most of the time are made because jmod looked into the issue and not because it was flagged and banned with ban wave like in botting. So they are not keen to look into something they manually did before.
  23. Hi, yes I am aware of it, I changed it to "Item" when I pasted I changed a code to be more like you said, but still the issue is happening. Happened two times, one after 6 hours of using it other after 10 minutes. Currently using this code: getNpcs().closest("NPC").interact("Trade"); log("Trading NPC"); new ConditionalSleep(8000, 1000) { @Override public boolean condition() throws InterruptedException { return getStore().isOpen(); } }.sleep(); log("Store is open now"); if(getStore().isOpen()) { log("Store is open"); if (getStore().getAmount("Item") > 5) { log("Amount is good, buying"); getStore().buy("Item", 1); new ConditionalSleep(5000, 1000) { @Override public boolean condition() throws InterruptedException { return getInventory().contains("Item"); } }.sleep(); log("Closing store"); getStore().close(); new ConditionalSleep(5000, 1000) { @Override public boolean condition() throws InterruptedException { return !getStore().isOpen(); } }.sleep(); And still bugs with this in logger: [INFO][Bot #1][11/19 03:15:40 PM]: Opening store [INFO][Bot #1][11/19 03:15:40 PM]: Trading NPC [INFO][Bot #1][11/19 03:15:41 PM]: Store is open now [INFO][Bot #1][11/19 03:15:41 PM]: Store is open [INFO][Bot #1][11/19 03:15:41 PM]: Amount is good, buying [WARN][Bot #1][11/19 03:20:48 PM]: Script executor is taking too long to suspend; restarting now... And when I log into account I can see that it haven't bought the item. Any ideas what could be wrong here?
  24. For me the ban rate is around 50%, either I get banned or I don't
  25. Hello, have been experiencing this issue for sometime now and fail to find why it is happening. My script just randomly throws this error: [WARN][Bot #1][11/19 06:28:37 AM]: Script executor is taking too long to suspend; restarting now... and pretty much script crashes, stands for 5 minutes, logs out and that's it. Also it happens very randomly, e.g. the last time this happened script ran for 10 hours without issues, but it also could happened within hour or so. The logger goes like this before crashing: [INFO][Bot #1][11/19 06:23:29 AM]: Trading NPC [INFO][Bot #1][11/19 06:23:30 AM]: Check amount [INFO][Bot #1][11/19 06:23:30 AM]: Buy item at first try [WARN][Bot #1][11/19 06:28:37 AM]: Script executor is taking too long to suspend; restarting now... [INFO][Bot #1][11/19 06:41:46 AM]: Terminating script Ironmanbuyer... if (gpAmount > 1000) { final int feathers = (int)this.getInventory().getAmount(new String[] { "Item" }); getNpcs().closest("NPC").interact("Trade"); log("Trading NPC"); new ConditionalSleep(8000, 1000) { @Override public boolean condition() throws InterruptedException { return getStore().isOpen(); } }.sleep(); log("Check amount"); if(getStore().isOpen() && getStore().getAmount("Item") > 5){ log("Buy item at first try"); if(getStore().getItem("Item") != null){ getStore().buy("Item",5); } log("Bought"); new ConditionalSleep(5000, 1000) { @Override public boolean condition() throws InterruptedException { return getInventory().contains("Item"); } }.sleep(); log("Closing store"); getStore().close(); new ConditionalSleep(5000, 1000) { @Override public boolean condition() throws InterruptedException { return !getStore().isOpen(); } }.sleep(); } So the last logger are always "Buy item at first try" and after it crashes I never find it with the item in inventory. So the issue must be in this part, but I don't know why is this is wrong. Can it be client itself issue since these issues were not happening with previous versions? Thanks everyone for input if(getStore().getItem("Item") != null){ getStore().buy("Item",1); }
×
×
  • Create New...