Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/15/20 in all areas

  1. 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
  2. @Mokrocaan You can do what Nbacon did if you don't care about picking up other peoples loot they left. But if you want to only pick up your loot, then store the tile the npc health percent == 0 is and then check that tile is != null and if it contains items you want to loot, loot. Else make the tile == null so it can attack another monster. Can look something like this. Also if you haven't look into conditional sleeps. if (lootTile != null) { if (items I want exist at tile) { loot the tile } else { lootTile == null; } } else { find and attack the next monster }
    2 points
  3. Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
    1 point
  4. The only Runecrafting bot you will need Purchase this INSANE bot here You can setup a master account (preferably your main account, can be any account) and a worker account (a throwaway bot account, or any account) will trade the master account and go to bank to get more runes etc. The main account (master) does not need to bot, and can be achieved through the normal RS client without a bot client. Supports: Air runes (1) (normal) & (abyss) Mind runes (2) (normal) & (abyss) Water runes (5) (normal) & (abyss) Earth runes (9) (normal) & (abyss) Mud runes (13) (earth altar) Lava runes (23) (fire altar) Fire runes (14) (normal) & (abyss) Body runes (20) (normal) & (abyss) Cosmic runes (27) (normal) & (abyss) Chaos runes (35) (normal) & (abyss) Astral runes (40) (normal) & (abyss) Nature runes (44) (normal) & (abyss) Law runes (54) (normal) & (abyss) Blood runes (abyss) & (zeah) Auto Arceuus Favour Solver Gets 100% arceuus favour for you Auto GE Restocking Sells runes, buys more supplies automatically Auto-equips chosen armour/robes Use Blood Essences Death Handler gets items from Death's office and repeats (Abyss) Glory mode, ferox mode, house spell/tabs Avoids pkers and hops worlds Uses mouse invokes for quicker runecrafting (stealth) Muling (BETA) will give money to your mules every X hours or profit Creates colossal pouch if you have the needle Results and screenshots
    1 point
  5. If you dabble in the art of basic graphic/design all I need is something pretty basic. If you are competent in a pretty basic task, please add my Discord and I'll give you a brief example of what I'm looking for - you can then quote me the cost (any exaggerated prices will be ignored) Paying via 07, Paypal, UKBT or Revolut.
    1 point
  6. thanks for the reply`s i scrapt it and restarted it with state`s
    1 point
  7. This is my supppppppppppppppppppper generic combat code I made almost a full slayer bot out it and it suports Ironman looting. Its writen in kotlin... but it still compiles and runs. http://www.mediafire.com/file/6drc4vhydvbpyhv/methods.zip/file Hope you can find some usefull in it.
    1 point
  8. Yes right before he disappears, then you will probably have to wait about 3 seconds for the loot to spawn before checking the tile. EDIT: You may find something useful in this video; It has no looting but it involves combat and may be useful to you.
    1 point
  9. if( Im not in combat ){ if(is there loot on the ground? ){ pick up the loot... }else{ atttack some npc... } }
    1 point
  10. Hey, In an attempt to fix some deeply-rooted bugs, we've maded some changes to the way widgets are used throughout the API. Please test it as much as possible and let us know how it goes. Download link: http://osbot.org/devbuilds/osbot 2.5.89.jar API CHANGES: - Removed widget caching from world hopper, quests, logout tab, GE and shop api. Please let me know if you notice a difference and if it's on mirror or injection FIXES: - Added a missing break condition check in the worldhopper. - Fixed cli args for script and username/pass not working if there are spaces in the name (Usage of "" is required for names with spaces eg -script "script name":args) - Fixed a bug where the break manager would start during the welcome screen WEB WALKER: - Added PathPreferenceProfile#setAllowQuestLinks to enable/disable quest requirement links (default enabled, fairy rings are ignored) - Added Femi dialogue to the gnome stronghold gate MISC: - Minor bug fixes. - The OSBot Team
    1 point
  11. Just noticed that, that's a bug. It's fixed for the next release
    1 point
  12. So, a few problems. I'll go in order of least important to most important: (1) Your code is prone to null pointer exceptions: CT.contains(SC) && SC != null Switch this to check if the object is null first. You should do this for all of your code. (2) (a) The sand crab is quite possibly also not in range. If you're not currently fighting the sand crab, somebody else probably is. How far away are the sand crabs you're trying to interact with? My guess is that they're reasonably far, or not easily visible. (b) Similarly, Sand crabs aren't actually NPCs until you turn them agro by standing beside them. You'll only attack a sand crab if it's already up and around. (3) You sleep for up to an entire minute in between even checking the actions, totally tossing aside actually doing them. return random(3000, 60000); Make this wayyyy less. There are very few scenarios where it would actually make sense to have a gap this big, and this is not one of them. (4) Please look into a state-based system. There are quite a few tutorials on it in the tutorials section. It'll make the code a lot easier to follow when you/others debug. Similarly, revise your variable names if you want others to be able to read your code. I don't know what CT, RSA, or BT are. Side note: This should reset agro anytime there isn't an active sand crab around you, given you have >= 35% HP, and have Salmon/are in some area CT.
    1 point
  13. Is there a particular reason it's not in the resizable mode?
    1 point
  14. doing ranged at moss giants at crandor in mirror mode script fails to attack, its just standing there on the safe tile . [INFO][Bot #1][09/14 05:36:34 PM]: java.lang.NullPointerException at org.osbot.rs07.api.model.Item.isNote(ck:74) at b.c.Prn.b(hc:239) at org.osbot.rs07.api.util.ItemContainer.filter(bh:136) at org.osbot.rs07.api.util.ItemContainer.getItem(bh:40) at b.c.Prn.G(hc:239) at b.c.Prn.b(hc:170) at b.c.Prn.L(hc:163) at b.c.Prn.b(hc:86) at perfect.scripting.LoopScript.a(uh:2143) at a.CoN.A(yp:746) at a.CoN.onLoop(yp:914) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(uo:149) at java.lang.Thread.run(Unknown Source)
    1 point
  15. @Czar Hey im back after a bit of a break brother. I cant seem get the autofighter to work now, it just sits there on range mode or maging. Havent tried melee yet. Any ideas? (it just doesnt attack) EDIT: I am dumb, dont worry about it. Figured it out haha
    1 point
  16. can i have a trial please?
    1 point
  17. May i get a 24 hours trial please?
    1 point
  18. Hello could i get a trial?
    1 point
  19. Noticed that I have superior slayer monsters ticked, but when one appears for me the script still doesn't attack it. (Currently Doing this with Aberrant Specters)
    1 point
  20. Hey love to try your scripts. requesting 24hr trial on fighter script. is there a way i can purchase access to all your scripts, fighter/slayer/runecraft for bundle price?
    1 point
  21. Hello. I noticed when fighting a caged monster not sure if its all monsters. It reclicks the monster as its dying. Im using caged mode and magic with autocast
    1 point
  22. gets stuck in east ardy doing cannonballs. it pulls out supplies, runs to furnace, and walks back and forth from furnace and another spot. also got stuck in edge, camera was at an angle it couldnt see the furnace. i manually changed the angle and it picked back up. didnt ss that though : / otherwise, its working pretty well so far
    1 point
  23. @RuneMaster22 http://www.mediafire.com/file/j9356k2mtn6twf5/account_idler.jar/file
    1 point
  24. Stop being wide irl and the site will stop being wide virtually
    0 points
  25. probably would be more interesting if you would bot since this is botting site
    0 points
×
×
  • Create New...