Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/07/24 in all areas

  1. β™”CzarScripts #1 Bots β™” Proven the #1 selling, most users, most replies Script Series on the market. Big THANK YOU to all our wonderful users and supporters over the 8 years, we couldn't have done it without you. Czar Bots have always been the Best and the most Feature-rich bots available with the most total sales in OSBot history. Come and find out why everyone is choosing Czar Bots today. β™” LATEST BOTS β™” If you want a trial - just post the script name and it will be activated after I hit 'like' on your post Requirements: hit 'like' on this thread
    1 point
  2. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Buys every items - Sells every item - Supports every in game shop (if some are missing report to me!) - Supports every item - Customizable when to buy an item and even what action to use - Energy, Super energy, Stamina potion support - Stop after X amount of items bought mode - Coal bag (Coal ores buying at Blast furnace) - Opens packs - Menu invokes option - Advanced hopping configuration - Hop random, hop random by list, hop one by one by list - Hop delays Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2023! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 11227:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify '-script 1227'): -script 1227:TaskList1.4515breaks (With breaks) -script 1227:TaskList1.4515breaks.discord1 (With breaks & discord) -script 1227:TaskList1..discord1 (NO breaks & discord)
    1 point
  3. I'm opening a discussion as I've seen very little on here. Many around the greater botting community are exclaiming botting is doomed to die. I believe so long as we communicate experiences of what is working and what is not, we as a community can form better tactics. Traditionally, "main" accounts are rather untouched by bans so long as you bot via good proxies on limited daily botting times, but this is no longer the case as even they are being hit with moderate bot busting offences at a high frequency. Some background: I'm not naming clients as I'm not here to promote anything, but I've used multiple botting clients for years and continue to do so as some tend to perform better at certain times than others in terms of detectability. I don't do gold farms anymore as the ban rate is significantly higher than account building and turns into a matter of playing a numbers game with the continual replacement of inevitably culled accounts within a farm. So I'm an experienced botter with a focus on account building and selling. Since July I and many others have noticed a ramp up in bot busting whether you do injection or mirror doesn't seem to yield any discernable difference in detectability at the moment. I noticed particular hotspots at first, but now it has spread to more of a blanket coverage that is nailing account building at rates near that of gold farming in my anecdotal experience substantiated from feedback within a sizable private discord I'm in. This is a great community, let's share information and figure it out together! What is working for you? What isn't working and is avoid at all costs for you? Botting methods? Stealth or mirror? Certain activities?
    1 point
  4. Can I get a trial? Thanks Czar!
    1 point
  5. Can I try this out?
    1 point
  6. Hi I made this to train RCing in F2P; in short, you have 1 account that's the "master" account that sits at the air altar and waits for trades to come in, and the "slave" accounts run back and forth between the altar and the bank and trade pure essence to the master account. You choose this when you start the script (master or slave). It prompts you to put a username in, so it'll know to always trade the master account. I don't have it set up to trade accounts with a space in the name (it's fairly simple to do, I just never have usernames with spaces xD) so you'll have to change that yourself if you want to. Other than that, just start with the air tiara equipped and the script'll do the rest for you. It's a work in progress, but works fine at the moment!
    1 point
  7. Hi! Today I remembered void armour was a thing, so I made this; it works well and as intended - around 350 points gained so far between testing and actually running. In a nutshell: it will cross the nearest gangplank (that way you can use it on any of the boat levels) it will wait until the game starts when the game starts, it will click between 14-18 tiles south (because the PC map's coords change constantly) it will stay around the void knight and kill any enemies within a specified radius it will constantly 1 tick prayer flick (so you never take too much damage and you always get boosts) rinse and repeat Feel free to use as-is, copyfor your own projects, or suggest improvements! @ScriptManifest(info = "", logo = "", name = "Pest Control", author = "Marcus", version = 1.0) public class pestControl extends Script { private InvokeHelper invokeHelper; private Position ATTACK_ZONE_POSITION; private boolean gameStarted = false; public void onStart() throws InterruptedException { super.onStart(); invokeHelper = new InvokeHelper(this); log("Bot Started!"); } @Override public int onLoop() { if (!isInGame()) { gameStarted = false; if (!isInBoat()) { crossGangplank(); } } else { if (!gameStarted) { setAttackZonePosition(); gameStarted = true; } if (shouldGoToAttackZone()) { goToAttackZone(); } else { attackNearbyNPC(); } } return random(200, 300); } @Override public void onGameTick() { super.onGameTick(); RS2Widget quickPrayerWidget = getQuickPrayerWidget(); if (quickPrayerWidget == null) { return; } if (getPrayer().isQuickPrayerActive()) { invokeHelper.invoke(quickPrayerWidget, 0); invokeHelper.invoke(quickPrayerWidget, 0); } else { invokeHelper.invoke(quickPrayerWidget, 0); } } private RS2Widget getQuickPrayerWidget() { return getWidgets().get(160, 19); } private boolean isInGame() { RS2Widget gameWidget = getWidgets().get(408, 5); return gameWidget != null && gameWidget.isVisible(); } private boolean isInBoat() { RS2Widget boatWidget = getWidgets().get(407, 4); return boatWidget != null && boatWidget.isVisible(); } private void crossGangplank() { RS2Object gangplank = getObjects().closest("Gangplank"); if (gangplank != null && gangplank.interact("Cross")) { Sleep.until(() -> isInBoat(), 5000); if (isInBoat()) { log("Waiting for the game to start..."); Sleep.until(() -> isInGame(), 5000); } } } private void setAttackZonePosition() { Position playerStartPosition = myPosition(); if (playerStartPosition != null) { ATTACK_ZONE_POSITION = new Position(playerStartPosition.getX(), playerStartPosition.getY() - (random(14,18)), 0); log("Attack zone position set to: " + ATTACK_ZONE_POSITION); } } private boolean shouldGoToAttackZone() { return ATTACK_ZONE_POSITION != null && myPlayer().getPosition().distance(ATTACK_ZONE_POSITION) > 7; } private void goToAttackZone() { if (!myPlayer().isAnimating() && !myPlayer().isMoving()) { log("Running to the attack zone at position: " + ATTACK_ZONE_POSITION); getWalking().walk(ATTACK_ZONE_POSITION); Sleep.until(() -> myPlayer().getPosition().distance(ATTACK_ZONE_POSITION) <= 7, 10000); } else { log("Player is moving..."); } } private void attackNearbyNPC() { NPC target = getNpcs().closest(npc -> npc != null && npc.exists() && npc.hasAction("Attack") && getMap().canReach(npc) && isNearAttackZone(npc) ); if (target != null) { log("Attacking NPC: " + target.getName()); if (invokeHelper.invoke(target, "Attack")) { Sleep.until(() -> myPlayer().isAnimating() || myPlayer().isUnderAttack(), 1000); } } else { log("No suitable NPC found."); } } private boolean isNearAttackZone(NPC npc) { return npc != null && ATTACK_ZONE_POSITION != null && ATTACK_ZONE_POSITION.distance(npc.getPosition()) < 7; } @Override public void onExit() { log("Bot Stopped!"); } }
    1 point
  8. Hi, This script will mainly uses invokes and scatters vile ashes in f2p for upwards of 70k prayer XP/h. Enjoy!
    1 point
  9. 737 Cook's Assistant Description Does the Cook's assistant quest then stops. Can be started at any point. No inventory or bank required. Screens shots: Script: This is my first script. I made it for fun. Potentially I will continue writing scripts. Maybe more quests, maybe something else. I would appreciate any feedback. I come from a .NET background so my Java is so-so. Also if there are any OSbot best practices I'm not following please let me know. Thanks
    1 point
Γ—
Γ—
  • Create New...