Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/01/20 in all areas

  1. Brought to you by the #1 most sold script series on the market. Come and see why everyone's choosing Czar Scripts! This is the most advanced Agility bot you will find anywhere. BUY NOW $9.99 NEW! Added Both Wyrm Courses! SCRIPT INSTRUCTIONS Optimal Setup for the bot: Please set the mouse zoom to far away (to the left, like below) so that more obstacles can be seen in the view, and so the script can be more stable and reliable Also, make sure to have roofs toggled off (either go to settings tab or type ::toggleroof) for optimal results
    2 points
  2. Hawk has pointed out the problem. It seems that the particular object you are interacting with changes after interacting with it - this is not the case for all objects, but appears to be the case here. Regarding the structure of your code, you should always aim to make the script deterministic based on game state. This essentially means that you should be executing a single game interaction per onLoop iteration. This way, should any given interaction fail (which can happen for many reasons as we are automating a live game here), the script will always be in a state to retry. Here's what I mean in your context with pseudocode: onLoop { RS2Object trapdoor = getObjects().closest("Trapdoor"); if (trapdoor has action "open") { if (trapdoor.interact("open")) { conditional sleep until trapdoor is open; } } else if (trapdoor has action "climb-down") { if (trapdoor.interact("climb-down")) { conditional sleep until climb down is successful (e.g. correct z index) } } } Note that for every iteration of onLoop here, only one interaction can ever happen. Also note that this example doesn't take into account the particular issue you are experiencing wrt. the trapdoor object changing. You'll probably need to initialise two objects (e.g. trapdoorOpen and trapdoorClosed) and act based on which one is null. Hope that helps Apa
    2 points
  3. It's because the closed trapdoor is not the same object as the open trapdoor. After you open the trapdoor and try to call "Climb-down" it does nothing because the only action that trapdoor object has is "Open".
    2 points
  4. There are 2 options for iron men Press F5 to enable iron man mode (list of quests supported on thread) where it will automatically collect all required items, no banking or GE Press F4 to disable GE and banking (errors may occur if not giving it the expected items) I'm still working on it, a release is ready in a few days There was a huge game update which affected all quests 3 days ago, I'm still working to trace all problems All "start quest" dialogues should be fixed
    2 points
  5. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
    1 point
  6. CURRENT RECORD: 201 HOURS RUNTIME NEW: Sandstone mining + hopper support Humidify/water circlet/bandit unnote Ardy cloak tele support Setup Screen Preview Results 84 HOURS ON NEW LEVEL 20 ACCOUNT Suicided account with mirror mode near rock crabs, 81 mining! I will probably go for 99 Even supports Ancient Essence Crystal mining! Preview: Mine 1 drop 1 item drop pre-hover feature:
    1 point
  7. It doesn't matter if you're not American. The world is at stake right now. QAnon is real. Trump 2020 or you're in for a rude awakening. All mainstream media and big tech are controlled and operated by a cabal of satanic pedophiles. I don't care that this is an RS forum or that you're "not interested". Wake up, the lives of every human being on Earth depends on it. #TheLaptopFromHell
    1 point
  8. your my hero too hihi
    1 point
  9. my mistake you press f5. This script is expensive but you can tell its had allot of time put into it and its worth every penny! keep up the good work
    1 point
  10. there is an iron man mode, check the description, its f5 i think? also if you have x item in your bank that is required to start the quest it wont try and buy it
    1 point
  11. This script is amazing and probably 1 of the best ive ever seen but 1 features really is frustrating and thats not being able to have "iron man mode" on main accounts. 1 of the reasons i wanted this script was to get the QP to remove trade restrictions so I can sell items. It keeps trying to buy stupid things like the items for cooks assistant. It would be amazing if you could update it so you can have the choice to collect items or buy items. Thank you
    1 point
  12. I want you to read that back to yourself, and then think about why you got a ban
    1 point
  13. The onLoop is just a while loop which continues until the user presses the red 'stop' button, where the return value is a millisecond delay between loops. You can use it as you wish. The 'design pattern' I described, where only a single game interaction happens per loop, is safest as this makes the script deterministic. And yes - a 'walk path' call could also fail (potentially even mid-route). For example, your network connection could drop for 5 seconds. Your script needs to be able to be able to handle the possibility of this. -Apa Edit: About conditional sleeps for this particular situaton: I would sleep until the 'open trapdoor' object exists, rather than waiting for animation.
    1 point
  14. good, magic only would be slower
    1 point
  15. 1 point
  16. The favorite tile option is buggy. When you set a "favorite tile" when all the ores are gone in that place it will try and mine somewhere else but then if its halfway through mining an ore and 1 becomes available on the "favorite tile" it will go and mine that one rather then waiting for the current action to be finished.
    1 point
  17. That still has some flaws in it. Imagine the trapdoor already being open, you will never enter the trapdoor. You also need to null check in case the object was not found. Also some conditional sleeps makes it alot better ^^ You want to do something like this: RS2Object trapDoor = getObjects().closest("Trapdoor"); if (trapDoor != null) { if (trapDoor.hasAction("Open")) { if (trapDoor.interact("Open")) { new ConditionalSleep(7000) { @Override public boolean condition() { return trapDoor.hasAction("Climb-down"); } }.sleep(); } } else { Position prevPos = myPosition(); if (trapDoor.interact("Climb-down")) { new ConditionalSleep(5000) { @Override public boolean condition() { return myPosition().distance(prevPos) > 50 || myPosition().getZ() != prevPos.getZ(); } }.sleep(); } } }
    1 point
  18. hey token and anyone else not sure if anyone else has had the issue and reported it when i started the script on the logger it was saying something like grabing items for herb run even tho i had everything in my inventory my work around was to dump everything in the bank and the script started working again and took everything out it only happened when i started the script with items already in my inventory scripts been running now for 3 hours no issues
    1 point
  19. Could i get a trial for cooking please? Regards
    1 point
  20. v1.28: Fixed a bug with CLI Fixed a bug with #getTradingPlayerName in Trading Minor fixes v1.27: Added a new theme to go along with OSBot 3.0 Fixed a bug that would not clear Path variables Minor fixes
    1 point
  21. The issue has been resolved had to restart it for some odd reason.
    1 point
  22. can I get a trial please?
    1 point
  23. Hey can I have a trial please
    1 point
  24. For x marks the spot, i would suggest picking up the spade at the estate agent in Falador, then it's f2p viable
    1 point
  25. Ty for trail Already purchase , work really good !!!
    1 point
  26. This script is good but the world hopping option doesn't work as on my f2p accounts it keeps trying to hop into league worlds. Could you please look into this? Also you think you can make it so it hops into worlds with minimum players aswell as then it will have less chance in going into worlds with loads of players in the mining area?
    1 point
  27. Hi Molly, If you could give me the trial today i could give it a try
    1 point
  28. i hate to be "that guy" you did give me a trial however iv been busy with work and getting a roof, could u re do the 24 hr trial? the other blastfurnace trial i tried was too... botty, i want to see if yours is more humanlike etc. i wont run in long durations like you said previously, if u can great if not then its ok lol my bad i just got home for the weekend.
    1 point
  29. Hey, how come when I try to mine silvers at the crafting guild it doesnt give me the option to teleport to falador for bank.
    1 point
  30. hey just wondering if this script is still working okay? also how much is it for osrs gold, and do you do trials?
    1 point
  31. Ragnars Warrior Guild Currently out with the premium Warrior Guild scripts on the SDN there are no feature rich scripts for this mini-game, I hope you appreciate my time and effort to bring this script to you g๏ปฟuys.๏ปฟ Info Current Version: v1.3 Script Features Running Modes: Collect Tokens Collect Tokens & Kill Cyclops Only Kill Cyclops Misc Settings: Use Quick Prayers Move Mouse Outside Screen During Combat Food Settings: Supports Most Food Bank When Out Of Food Set HP % To Eat At Token Settings: Supports All Armour Types Set Token Amount To Begin Killing Cyclops Cyclops Settings: Progressive (Loots Best Defender) Camp Top Floor (Loots Defenders Up To Rune) Camp Bottom Floor (Loots Dragon Defenders) Do you require any features that are not listed above? Leave a post and I'll be sure to look into the possibility of adding these features. GUI Bu๏ปฟg Reports If you come across any bugs while using this script please report them here and I'll be sure to look into them in a timely manner.๏ปฟ Download RagnarsWarriorGuildObfuscated.jar
    1 point
  32. Open the entity debugger and hover over a position. This will tell you it's x,y and z position. The z position will therefore be the same as the rest of the dungeon. However there are some dungeons and rooftops with z co-ords of 0 (and if my memory serves correctly hill giants may well be one of them?) so if that is the case then you can always create an area and check if you're in it. Alternatively, seeing as u just climbed down a ladder, you could check whether the ladder has a 'climb-up' option instead of a 'climb-down' option ~apa
    1 point
  33. Yeh you can get a discount but it can only happen through a voucher, because the store doesn't have discount system ^^
    1 point
ร—
ร—
  • Create New...